home *** CD-ROM | disk | FTP | other *** search
- /*
- * List of function definitions that may *optionally* be included
- * in libiberty.a. The function names must match the filenames,
- * e.g. bzero() is defined in bzero.c. (While each file can contain
- * extra functions, do not list them.)
- *
- * In the default libiberty configuration, these object files
- * (e.g bzero.o) are included if and only if cc fails to find
- * the corresponding function in libc. See config/mh-default.
- */
-
- DEF(bcmp, int, (s1, s2, length), char *s1 AND char *s2 AND int length )
- DEF(bcopy, void, (s1, s2, length), char *s1 AND char *s2 AND int length )
- DEF(bzero, void, (s, length), char *s AND int length)
- DEF(getopt, int, (argc, argv, optstring),
- int argc AND char **argv AND CONST char *optstring)
- DEF(getpagesize, int , (), )
- DEF(getcwd, char*, (buf, len), char *buf AND int len)
- DEF(index, char*, (s, c), char *s AND int c)
- DEF(insque, void, (), )
- DEF(memcmp, int, (s1, s2, length),
- CONST PTR s1 AND CONST PTR s2 AND size_t length)
- DEF(memcpy, PTR, (s1, s2, length), PTR s1 AND CONST PTR s2 AND size_t length)
- DEF(memmove, PTR, (s1, s2, length), PTR s1 AND CONST PTR s2 AND size_t length)
- DEF(memset, PTR, (s, val, length), PTR s AND int val AND size_t length )
- DEF(rindex, char*, (s, c), char *s AND int c)
- DEF(strchr, char*, (s, c), CONST char *s AND int c)
- DEF(strdup, char*, (s1), char * s1)
- DEF(strerror, char*, (), )
- DEF(strrchr, char*, (s, c), CONST char *s AND int c)
- DEF(strstr, char*, (), )
- DEF(strtol, long, (), )
- DEF(strtoul, long, (), )
- DEF(vfork, int, (), )
- DEF(vfprintf, int, (), )
- DEF(vprintf, int, (), )
- DEF(vsprintf, int, (), )
- DEF(sigsetmask, int, (), )
- DEF(alloca, PTR, (size), size_t size)
-